iT邦幫忙

2018 iT 邦幫忙鐵人賽
DAY 16
0
Data Technology

Python自習手札系列 第 16

Python自習手札(16/30): 亂數random

  • 分享至 

  • xImage
  •  

參考參考http://docs.python.org/lib/module-random.html

隨機整數

[root@localhost test]# python
Python 2.7.5 (default, Nov 20 2015, 02:00:19) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import random
>>> random.randint(0,99)
74
>>> 

洗個牌兒~

[root@localhost test]# python
Python 2.7.5 (default, Nov 20 2015, 02:00:19) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import random
>>> items = [0,1,2,3,4,5,6,7,8,9]
>>> random.shuffle(items)
>>> items
[7, 2, 8, 9, 4, 0, 3, 5, 6, 1]
>>> 


上一篇
Python自習手札(15/30): Python日期時間Date/Time
下一篇
Python自習手札(17/30): 計算檔案行數
系列文
Python自習手札31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言